home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 1 / Cream of the Crop 1.iso / PROGRAM / KSLIB11.ARJ / ENV.H < prev    next >
Text File  |  1991-11-07  |  364b  |  17 lines

  1. typedef struct {
  2.     char    miscl[22];
  3.     uint    par_seg;
  4.     char    misc2[20];
  5.     uint    env_seg;
  6. } PSP;
  7.  
  8. typedef struct {
  9.     char    status;                        /* Block is in chain or not            */
  10.     uint    owner_psp;                    /* PSP segment of block's owner        */
  11.     uint    size;                        /* Size (in paragraphs) of block    */
  12. } MCB;
  13.  
  14. void    fndenvp(void);
  15. int        setenvp(char *,char *);
  16. int        delenvp(char *);
  17.